home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELT.H < prev    next >
Text File  |  1992-03-25  |  317b  |  24 lines

  1. //    CMandelTextFile.h
  2.  
  3. #pragma once
  4.  
  5. #include <CStdioFile.h>
  6.  
  7. class CMandelDoc;
  8.  
  9. class CMandelTextFile: public CStdioFile {
  10.  
  11.     public:
  12.     
  13.         void            IMandelTextFile(CMandelDoc *);
  14.         Handle            ReadAll(void);
  15.         void            WriteAll(Handle);
  16.  
  17.     protected:
  18.     
  19.         CMandelDoc *    itsMandelDoc;
  20.         
  21.     private:
  22.     
  23.         static char *    cFormats[];
  24. };